"Potsie" with high scores

This version of Potsie stores high scores using Cookies.


Discussion

This applet uses the JavaScript Cookbook cookie routines to store and recover high scores.

function saveScores()
{
        hiScore.setExpires('year')
        hiScore.path = '/'
        hiScore.store()
        hiName.setExpires('year')
        hiName.path = '/'
        hiName.store()
}
Copyright ©1998 by Charles River Media, All Rights Reserved